inspector: Clean up includes
authorMatthias Clasen <mclasen@redhat.com>
Sat, 12 Jul 2014 03:14:04 +0000 (23:14 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sat, 12 Jul 2014 03:14:04 +0000 (23:14 -0400)
Don't include gtk.h, instead include individual headers.
And include config.h and gi18n-lib.h everywhere.

41 files changed:
gtk/inspector/action-editor.c
gtk/inspector/action-editor.h
gtk/inspector/actions.c
gtk/inspector/actions.h
gtk/inspector/button-path.c
gtk/inspector/button-path.h
gtk/inspector/classes-list.c
gtk/inspector/classes-list.h
gtk/inspector/css-editor.c
gtk/inspector/css-editor.h
gtk/inspector/data-list.c
gtk/inspector/data-list.h
gtk/inspector/general.c
gtk/inspector/general.h
gtk/inspector/gestures.c
gtk/inspector/gestures.h
gtk/inspector/inspect-button.c
gtk/inspector/menu.c
gtk/inspector/menu.h
gtk/inspector/object-hierarchy.c
gtk/inspector/object-hierarchy.h
gtk/inspector/prop-editor.c
gtk/inspector/prop-editor.h
gtk/inspector/prop-list.c
gtk/inspector/prop-list.h
gtk/inspector/python-shell.c
gtk/inspector/python-shell.h
gtk/inspector/resource-list.c
gtk/inspector/resource-list.h
gtk/inspector/signals-list.c
gtk/inspector/signals-list.h
gtk/inspector/size-groups.c
gtk/inspector/size-groups.h
gtk/inspector/style-prop-list.c
gtk/inspector/style-prop-list.h
gtk/inspector/visual.c
gtk/inspector/visual.h
gtk/inspector/widget-tree.c
gtk/inspector/widget-tree.h
gtk/inspector/window.c
gtk/inspector/window.h

index 397cc74ce7397811a8de63798bbe6af79ffd625f..cfc041282baa8ee78be1236477d0a04e39510a7f 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "action-editor.h"
 
+#include "gtksizegroup.h"
+#include "gtktogglebutton.h"
+#include "gtkentry.h"
+#include "gtkbin.h"
+#include "gtklabel.h"
+
 struct _GtkInspectorActionEditorPrivate
 {
   GActionGroup *group;
index 23f354944a1e448b43b356cf7b1649dfe4a60e0b..5edb2b247d0efcf7892b1282f38f8fda982b4eaf 100644 (file)
@@ -19,7 +19,7 @@
 #define _GTK_INSPECTOR_ACTION_EDITOR_H_
 
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 
 #define GTK_TYPE_INSPECTOR_ACTION_EDITOR            (gtk_inspector_action_editor_get_type())
index e2620f5fcd3da03273f1d7c5fd2af4365b8736e3..dc7a6870a625f21ae596a3b2e527cbb5db4efd7a 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "actions.h"
 #include "action-editor.h"
+
+#include "gtkapplication.h"
+#include "gtkapplicationwindow.h"
+#include "gtktreeview.h"
+#include "gtkliststore.h"
 #include "gtkwidgetprivate.h"
+#include "gtkpopover.h"
 
 enum
 {
index d9d36ee2b610ad684a5271a15d1697f8cd0ec197..7495367a1a21e403059817f30de73692504a306f 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef _GTK_INSPECTOR_ACTIONS_H_
 #define _GTK_INSPECTOR_ACTIONS_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_ACTIONS            (gtk_inspector_actions_get_type())
 #define GTK_INSPECTOR_ACTIONS(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_ACTIONS, GtkInspectorActions))
index 733c7a1efe0f1b1f0f4e9473d9c9d7bd6fab9dc5..cfd70413232097f6fb86531ff84f89ceb0b51be8 100644 (file)
  * THE SOFTWARE.
  */
 
+#include "config.h"
+#include <glib/gi18n-lib.h>
+
 #include "button-path.h"
 
+#include "gtkbutton.h"
+#include "gtkwidgetpath.h"
+
 struct _GtkInspectorButtonPathPrivate
 {
   GtkWidget *sw;
index 22d89cc8256ac7d4e375bccc8219237301530301..c16efb6bc2206ff027b260b603f4408bea2c4c93 100644 (file)
@@ -23,7 +23,7 @@
 #define _GTK_INSPECTOR_BUTTON_PATH_H_
 
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_BUTTON_PATH            (gtk_inspector_button_path_get_type())
 #define GTK_INSPECTOR_BUTTON_PATH(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_BUTTON_PATH, GtkInspectorButtonPath))
index a5f716dc8b81c77cfa5ba9b2b9a61c9778facfba..8bc17d9ebf69f9d96eb45b65ee54e04b168a4fd7 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "classes-list.h"
 
+#include "gtkliststore.h"
+#include "gtktreeview.h"
+#include "gtkcellrenderertoggle.h"
+#include "gtkbutton.h"
+#include "gtkdialog.h"
+#include "gtkstylecontext.h"
+
 enum
 {
   COLUMN_ENABLED,
index 09ab770b6468df4e2ae2ad3e161ba76b8208a5f2..fb8c94832a5dc4d16a42ff1bff232dd0fab696dc 100644 (file)
@@ -23,7 +23,7 @@
 #ifndef _GTK_INSPECTOR_CLASSES_LIST_H_
 #define _GTK_INSPECTOR_CLASSES_LIST_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_CLASSES_LIST            (gtk_inspector_classes_list_get_type())
 #define GTK_INSPECTOR_CLASSES_LIST(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_CLASSES_LIST, GtkInspectorClassesList))
index 8224c6ae38a44ad989fee9a54fd55e486d312ea5..e00bf53735456edae44fb18fbff7d879bfb49ce2 100644 (file)
  */
 
 #include "config.h"
-#include "css-editor.h"
 #include <glib/gi18n-lib.h>
 
+#include "css-editor.h"
+
+#include "gtkcssprovider.h"
+#include "gtkstyleprovider.h"
+#include "gtkstylecontext.h"
+#include "gtktextview.h"
+#include "gtkmessagedialog.h"
+#include "gtkfilechooserdialog.h"
+#include "gtktoggletoolbutton.h"
+
 #define GTK_INSPECTOR_CSS_EDITOR_TEXT "inspector-css-editor-text"
 #define GTK_INSPECTOR_CSS_EDITOR_PROVIDER "inspector-css-editor-provider"
 
index 82a74f0adc2aca572644d8b54168e99181760336..ad95d6508a0522529cd599401d10f223c3a1927f 100644 (file)
@@ -23,7 +23,7 @@
 #ifndef _GTK_INSPECTOR_CSS_EDITOR_H_
 #define _GTK_INSPECTOR_CSS_EDITOR_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_CSS_EDITOR            (gtk_inspector_css_editor_get_type())
 #define GTK_INSPECTOR_CSS_EDITOR(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_CSS_EDITOR, GtkInspectorCssEditor))
index 7e3e11f969a815eba0cd0b712c9d080e0857949b..4ed9ee1104516a91753c5fad59492bacebc541fd 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "data-list.h"
 
+#include "gtktreeview.h"
+#include "gtkcellrenderertext.h"
+#include "gtktoggletoolbutton.h"
+
 struct _GtkInspectorDataListPrivate
 {
   GtkTreeModel *object;
index 57f0eca912c8a9809701a449195e28876b253044..9a9af15a780957db79ef5cdca1db322625b91ae2 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef _GTK_INSPECTOR_DATA_LIST_H_
 #define _GTK_INSPECTOR_DATA_LIST_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_DATA_LIST            (gtk_inspector_data_list_get_type())
 #define GTK_INSPECTOR_DATA_LIST(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_DATA_LIST, GtkInspectorDataList))
index 2493c1f463889d700202625df559b4ffb3714ee5..e91590770424ea665b3cffe9f83adf19e1d3c75d 100644 (file)
@@ -20,6 +20,9 @@
 
 #include "general.h"
 
+#include "gtkdebug.h"
+#include "gtkswitch.h"
+#include "gtklistbox.h"
 #include "gtkprivate.h"
 
 #ifdef GDK_WINDOWING_X11
index 88573b03faf9c3bcfffe4511be5703376bda51db..c83c04ba9f7ba3e44e789ed34b8fc76683bea3e7 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef _GTK_INSPECTOR_GENERAL_H_
 #define _GTK_INSPECTOR_GENERAL_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_GENERAL            (gtk_inspector_general_get_type())
 #define GTK_INSPECTOR_GENERAL(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_GENERAL, GtkInspectorGeneral))
index 8424c1e7109e12f84e325fa54a1e2b24cd3dea19..d9d727a7f10af78e02f2cb1501c1a403378e5c0d 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "gestures.h"
-#include "gtkwidgetprivate.h"
 #include "widget-tree.h"
 
+#include "gtksizegroup.h"
+#include "gtkcomboboxtext.h"
+#include "gtklistbox.h"
+#include "gtkgesture.h"
+#include "gtklabel.h"
+#include "gtkframe.h"
+#include "gtkwidgetprivate.h"
 
 enum
 {
index e4f8dcbba3b1c3dedd664c8e8c13bed0ed5f57b6..d5c8acb2c24420e1e263b350174b6230def9cfa0 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef _GTK_INSPECTOR_GESTURES_H_
 #define _GTK_INSPECTOR_GESTURES_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_GESTURES            (gtk_inspector_gestures_get_type())
 #define GTK_INSPECTOR_GESTURES(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_GESTURES, GtkInspectorGestures))
index f55874b41df24343403ed0c2039ac451cde9412f..ad95480a95a51a2c1c7a95e32e4c401c351df251 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "window.h"
 #include "widget-tree.h"
 
+#include "gtknotebook.h"
+#include "gtkmain.h"
+
 typedef struct
 {
   gint x;
index 652e30832178a8d38ab06655b36375e042ccf34a..98412d9f2b01486aa4b72680770e00a35448d8b4 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "menu.h"
+
+#include "gtktreestore.h"
 #include "gtkwidgetprivate.h"
 
 enum
index 3472c1dfc7d5ac3071f74ab18b69818bc50fb78d..1d7b0d93b6221133567b8244cd9de58697cbc40b 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef _GTK_INSPECTOR_MENU_H_
 #define _GTK_INSPECTOR_MENU_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_MENU            (gtk_inspector_menu_get_type())
 #define GTK_INSPECTOR_MENU(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_MENU, GtkInspectorMenu))
index 1547e61b17aec908f36faf7123a25557bf22afd9..47cfbc65e65b7c2f05ee54873c476993a7d66c3f 100644 (file)
  * THE SOFTWARE.
  */
 
+#include "config.h"
+#include <glib/gi18n-lib.h>
+
 #include "object-hierarchy.h"
 
+#include "gtktreeview.h"
+#include "gtktreestore.h"
+
+
 enum
 {
   COLUMN_OBJECT_NAME
index c008eec13df2cc9cc94fbb8ef0de96326953f5f9..961be2aa37848947cfb4b0cd3227459a772352be 100644 (file)
@@ -23,7 +23,7 @@
 #ifndef _GTK_INSPECTOR_OBJECT_HIERARCHY_H_
 #define _GTK_INSPECTOR_OBJECT_HIERARCHY_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_OBJECT_HIERARCHY            (gtk_inspector_object_hierarchy_get_type())
 #define GTK_INSPECTOR_OBJECT_HIERARCHY(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_OBJECT_HIERARCHY, GtkInspectorObjectHierarchy))
index 4614a9211ca350ea875fb6d140d5d76724c8ba3c..2e78da9713b27b91f30d7d67e1a9aa82ac3b41e8 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "prop-editor.h"
 #include "widget-tree.h"
+
+#include "gtkactionable.h"
+#include "gtkadjustment.h"
+#include "gtkapplicationwindow.h"
+#include "gtkcelllayout.h"
+#include "gtkcellrenderertext.h"
+#include "gtkcolorbutton.h"
+#include "gtkcolorchooser.h"
+#include "gtkcolorchooserwidget.h"
+#include "gtkcombobox.h"
+#include "gtkfontchooser.h"
+#include "gtkfontchooserwidget.h"
+#include "gtkiconview.h"
+#include "gtklabel.h"
+#include "gtkpopover.h"
+#include "gtkradiobutton.h"
+#include "gtkscrolledwindow.h"
+#include "gtkspinbutton.h"
+#include "gtktogglebutton.h"
 #include "gtkwidgetprivate.h"
 
 struct _GtkInspectorPropEditorPrivate
index 6fef2319b45edffd799c666f1682acfbd73e2e80..ab7f548a8472dadd64f1277beaf2981b67a19456 100644 (file)
@@ -19,7 +19,7 @@
 #define _GTK_INSPECTOR_PROP_EDITOR_H_
 
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 
 #define GTK_TYPE_INSPECTOR_PROP_EDITOR            (gtk_inspector_prop_editor_get_type())
index 4a1c0341b971e1984d79aa22aedba103817d7a1e..c28e16ed02785cc9f0dd7c411a254486f646ded2 100644 (file)
  * THE SOFTWARE.
  */
 
+#include "config.h"
+#include <glib/gi18n-lib.h>
+
 #include "prop-list.h"
+
 #include "prop-editor.h"
 #include "widget-tree.h"
 
+#include "gtkcelllayout.h"
+#include "gtkpopover.h"
 
 enum
 {
index efac73196474281cd2f3fc77b22d12c24950d63e..9c293f4bc71e21cdf566b65e7e3ce7dcbb00b26b 100644 (file)
@@ -24,7 +24,7 @@
 #define _GTK_INSPECTOR_PROP_LIST_H_
 
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_PROP_LIST            (gtk_inspector_prop_list_get_type())
 #define GTK_INSPECTOR_PROP_LIST(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_PROP_LIST, GtkInspectorPropList))
index 5d13f78a15773baa83a1f6b1359bddc018162eed..b52c723b32a765b1df95e9b507e0a9f5f1acc3d3 100644 (file)
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  * THE SOFTWARE.
  */
+#include "config.h"
+#include <glib/gi18n-lib.h>
+
 #include <gdk/gdkkeysyms.h>
 #include <string.h>
 
 #include "python-hooks.h"
 #include "python-shell.h"
 
+#include "gtkscrolledwindow.h"
+#include "gtktextview.h"
+
 #define MAX_HISTORY_LENGTH 20
 
 struct _GtkInspectorPythonShellPrivate
index 9e002a943cda73a202c8eb4e7e92d4122eedfb4c..e1065e9f50455cc3f109f1c13b81826cc9907ca2 100644 (file)
@@ -27,7 +27,7 @@ typedef struct _GtkInspectorPythonShell         GtkInspectorPythonShell;
 typedef struct _GtkInspectorPythonShellClass    GtkInspectorPythonShellClass;
 typedef struct _GtkInspectorPythonShellPrivate  GtkInspectorPythonShellPrivate;
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_PYTHON_SHELL (gtk_inspector_python_shell_get_type())
 #define GTK_INSPECTOR_PYTHON_SHELL(obj) \
index c3ad3c3ebc09b12ff917302188db0ad3f4b9d05f..6693f1b3f4728bcb6e28c8fc8c8a1b70868589a8 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "resource-list.h"
 
+#include "gtktextbuffer.h"
+#include "gtktreestore.h"
+#include "gtktreeselection.h"
+
 enum
 {
   COLUMN_NAME,
index 2cc0beb52f7c42dfd2e00d9df79ed07f7a839b8d..f51e7fefd4ce3fb49c48e5af5e06cbaa8bef07a0 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef _GTK_INSPECTOR_RESOURCE_LIST_H_
 #define _GTK_INSPECTOR_RESOURCE_LIST_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_RESOURCE_LIST            (gtk_inspector_resource_list_get_type())
 #define GTK_INSPECTOR_RESOURCE_LIST(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_RESOURCE_LIST, GtkInspectorResourceList))
index d15fab5388e0c5b3ed9ff6152e52909afb2a1d7b..76957174a80d43185d9b3d4bfc9080b34810c371 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "signals-list.h"
 
+#include "gtkcellrenderer.h"
+#include "gtkliststore.h"
+#include "gtktextbuffer.h"
+#include "gtktoggletoolbutton.h"
+#include "gtktreeviewcolumn.h"
+
 enum
 {
   COLUMN_NAME,
index 51f46f02c7efe3098ddba76434fdda8a3820e50a..211f5ba7269e35a8c09d7783fdad297ae846477b 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef _GTK_INSPECTOR_SIGNALS_LIST_H_
 #define _GTK_INSPECTOR_SIGNALS_LIST_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkpaned.h>
 
 #define GTK_TYPE_INSPECTOR_SIGNALS_LIST            (gtk_inspector_signals_list_get_type())
 #define GTK_INSPECTOR_SIGNALS_LIST(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_SIGNALS_LIST, GtkInspectorSignalsList))
index a077a2093a277892a4e86e82ac107f45737323f6..b6172f80c91cba25d3d401a70c310f3889078f83 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "size-groups.h"
 #include "window.h"
+
+#include "gtkcomboboxtext.h"
+#include "gtkframe.h"
+#include "gtklabel.h"
+#include "gtklistbox.h"
+#include "gtksizegroup.h"
+#include "gtkswitch.h"
 #include "gtkwidgetprivate.h"
 
 
index 2d4ccaa904701a66c35a6ec3eee30fe10762c095..42c2ce2ae57019214f7112c4e19ea676cd2bf3ee 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef _GTK_INSPECTOR_SIZE_GROUPS_H_
 #define _GTK_INSPECTOR_SIZE_GROUPS_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_SIZE_GROUPS            (gtk_inspector_size_groups_get_type())
 #define GTK_INSPECTOR_SIZE_GROUPS(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_SIZE_GROUPS, GtkInspectorSizeGroups))
index f08395d26bc85594e0342bd9ea156807ed66338f..9fed77b64d10be536d445be7394b1e0eca936308 100644 (file)
  * THE SOFTWARE.
  */
 
+#include "config.h"
+#include <glib/gi18n-lib.h>
+
 #include "style-prop-list.h"
+
 #include "gtkcssproviderprivate.h"
 #include "gtkcssstylepropertyprivate.h"
+#include "gtkliststore.h"
+#include "gtksettings.h"
 
 enum
 {
index fff545473778c1cf20cbda108f1b113f244170e4..46e604d1f4337fe16e6aab30e88b11c566d0402b 100644 (file)
@@ -22,8 +22,7 @@
 #ifndef _GTK_INSPECTOR_STYLE_PROP_LIST_H_
 #define _GTK_INSPECTOR_STYLE_PROP_LIST_H_
 
-
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_STYLE_PROP_LIST            (gtk_inspector_style_prop_list_get_type())
 #define GTK_INSPECTOR_STYLE_PROP_LIST(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_STYLE_PROP_LIST, GtkInspectorStylePropList))
index 4970119e2e6385c8771ac0871a84591fea1341ae..a665b5b7acf0cde0a5e0475249c0f50f5add4811 100644 (file)
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include "visual.h"
 
+#include "gtkcomboboxtext.h"
+#include "gtkdebug.h"
 #include "gtkprivate.h"
+#include "gtksettings.h"
+#include "gtkswitch.h"
+#include "gtkwindow.h"
 
 struct _GtkInspectorVisualPrivate
 {
index 3e1077e28a1abc199481702cea56ac247ef44c9a..593be52b3252d365e39ce36d827685efff108a16 100644 (file)
@@ -18,7 +18,7 @@
 #ifndef _GTK_INSPECTOR_VISUAL_H_
 #define _GTK_INSPECTOR_VISUAL_H_
 
-#include <gtk/gtk.h>
+#include <gtk/gtkbox.h>
 
 #define GTK_TYPE_INSPECTOR_VISUAL            (gtk_inspector_visual_get_type())
 #define GTK_INSPECTOR_VISUAL(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_VISUAL, GtkInspectorVisual))
index 6ecd28f9efb5e952d9b1f747c861be64f794df78..83e20f2c8154f1f3b97e935ed9cbd4ffbcf9663d 100644 (file)
  * THE SOFTWARE.
  */
 
-#include "prop-list.h"
+#include "config.h"
+#include <glib/gi18n-lib.h>
+
+#include <string.h>
+
 #include "widget-tree.h"
-#include "gtkwidgetprivate.h"
+#include "prop-list.h"
+
+#include "gtkbuildable.h"
+#include "gtkbutton.h"
+#include "gtkcelllayout.h"
 #include "gtkcomboboxprivate.h"
-#include <string.h>
+#include "gtkiconview.h"
+#include "gtklabel.h"
+#include "gtkmenuitem.h"
+#include "gtksettings.h"
+#include "gtktextview.h"
+#include "gtktreestore.h"
+#include "gtkwidgetprivate.h"
 
 enum
 {
index 1d8aa1bbdca15c55a9e2e0512726658a34e5f923..abe872bdf6cf9234f75340fa8afa0da9d13910d5 100644 (file)
@@ -23,9 +23,7 @@
 #ifndef _GTK_INSPECTOR_WIDGET_TREE_H_
 #define _GTK_INSPECTOR_WIDGET_TREE_H_
 
-
-#include <gtk/gtk.h>
-
+#include <gtk/gtktreeview.h>
 
 #define GTK_TYPE_INSPECTOR_WIDGET_TREE            (gtk_inspector_widget_tree_get_type())
 #define GTK_INSPECTOR_WIDGET_TREE(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_WIDGET_TREE, GtkInspectorWidgetTree))
index d97d80100093542462689ad23ae84db1ad72c032..8f99f1090fdf8c3b206a1e78b563f9e7b9a9d860 100644 (file)
@@ -24,7 +24,9 @@
 
 #include "config.h"
 #include <glib/gi18n-lib.h>
+
 #include <stdlib.h>
+
 #include "window.h"
 #include "prop-list.h"
 #include "classes-list.h"
index 6256832d07d6ef9d63baf0cdb4f1d500e46c753b..a04fb0ff0f970374fad7152b2766ab03c1e67040 100644 (file)
@@ -24,7 +24,7 @@
 #define _GTK_INSPECTOR_WINDOW_H_
 
 
-#include <gtk/gtk.h>
+#include <gtk/gtkwindow.h>
 
 #define GTK_TYPE_INSPECTOR_WINDOW            (gtk_inspector_window_get_type())
 #define GTK_INSPECTOR_WINDOW(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_INSPECTOR_WINDOW, GtkInspectorWindow))